home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_c / sm099c.zip / EXAMPLE / VARS.C < prev    next >
C/C++ Source or Header  |  1996-03-03  |  420b  |  18 lines

  1. #include "example.h"
  2.  
  3. int iScreenW;              /* Width of screen */
  4. int iScreenH;              /* Height of screen */
  5. BALLS Balls;
  6.  
  7. #if defined (OS2) && defined (GUI)
  8. HAB hAB;
  9. HMQ hMQ;
  10. HPS hPS;
  11. HDC hDC;
  12. QMSG QMsg;
  13. HWND hWndFrame;
  14. HWND hWndClient;
  15. ULONG ulFrameFlags = FCF_TITLEBAR | FCF_SYSMENU | FCF_SIZEBORDER |
  16.                      FCF_MINMAX | FCF_SHELLPOSITION | FCF_TASKLIST | FCF_ICON;
  17. #endif
  18.